Exemplo n.º 1
0
        private bool check_username_email(string _username, string _email)
        {
            bool res = _staffservice.Exist(x => x.sta_username == _username || x.sta_email == _email);

            return(res);
        }