using xDataService.Constants; namespace xDataService.Configuration { /// /// Describe a Database ... /// public class XDataBaseConfiguration { /// /// Provider Type ... /// /// public XDbProviders Provider { get; set; } /// /// Connection String which provide Requires Data to Connect to Db Provider ... /// /// public string ConnectionString { get; set; } } }