how to combine constructors in csharp

Code Example - how to combine constructors in csharp

                
                        public AccountService(ModelStateDictionary modelStateDictionary, string dataSourceID)
    : this(dataSourceID) //!!!
{
    this._modelState = modelStateDictionary;

}