public UserMothershipDataModel RunUser(IDbConnection connection, UserMothershipDataModel mother, UserPremiumWorkModel userPremium, IMothershipService motherService, IUMotherJumpService motherJump)
 {
     if (mother == null)
     {
         return(null);
     }
     motherJump.SinchronizeByMotherId(connection, mother.Id);
     FixProgreses(mother, userPremium);
     return(motherService.Update(connection, mother));
 }