vote up -1 vote down star

I have to do a project that solves the following situation, if you can suggest me some idea on what to use I'll be very grateful>>>>

It's to control the rent a car activity in a very particular company, the sale points only have e-mail, they are not communicated among them, they have to send to the Control some reports about the day activity when it finishes the work (using email), and the Control should send them the updates about the personal, vehicles if there are changes of rates, etc.... Control also have it's own resume reports...

I use C#, VS 2008 y SQL server 2005...but I been thinking that a SQl server in each Sales Point it will be to much (but they need the historical data too)...I don't now...

If you need more information about these just tell me...

If you now about something already done .... tell me too...

Thanks...

flag
2  
It sounds like you're going to need something bespoke, but I think you're going to break that down into the specific programming issue you are having... – Marc Gravell Nov 3 at 7:23

closed as not programming related by Greg Hewgill, ammoQ, marc_s, Mark Rushakoff, ChssPly76 Nov 3 at 22:26

1 Answer

vote up 1 vote down

Well, there are plenty of ways to solve it. It sounds like you will need a centralized database which stores all the data. You could have remote databases at each sale point too, which caches data/records and then imports them to the main database at the end of the day. If they have email access, that most likely means they have web access. So you could either develop some kind of ASP.Net framework and build a web page based sales point, or perhaps build a forms based sales point and have it communicate back to the server via any number of methods (tcp/ip, http request, anything really).

Another option would be to build up the sale points to be stand alone capable, so that if internet connection goes down they can still function 100%. Then at the end of each day they simply sync their data back to a main server.

There are many, many different ways to solve the problem and the best solution entirely depends on what your client prefers.

Hope that helped.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.