how to combine constructors in c# code example
Example: how to combine constructors in c#
public AccountService(ModelStateDictionary modelStateDictionary, string dataSourceID)
: this(dataSourceID) //!!!
{
this._modelState = modelStateDictionary;
}